home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 7
/
CU Amiga Magazine's Super CD-ROM 07 (1997)(EMAP Images)(GB)(Track 1 of 8)[!][issue 1997-02].iso
/
www
/
http
/
www.ajdean.demon.co.uk
/
studio
/
download
/
mui36usr.lha
/
MUI
/
Rexx
/
MUI-Demo.mrx
next >
Wrap
Text File
|
1996-07-13
|
538b
|
37 lines
/*
** This script shows how to obtain
** general information on an application.
*/
options results
address 'MUIDEMO.1'
'info title'
title = result
'info author'
author = result
'info copyright'
copyright = result
'info description'
description = result
'info version'
version = result
'info base'
base = result
'info screen'
screen = result
say "Title......: "title
say "Author.....: "author
say "Copyright..: "copyright
say "Description: "description
say "Version....: "version
say "Basename...: "base
say "Screen.....: "screen